From 894be790bf498f3d2be877b6294fbd3305759a3d Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Fri, 1 Jul 2011 14:54:11 -0500 Subject: [PATCH] Hide the Create Folder button in recent-files mode when the pathbar is on The create-folder machinery doesn't handle that case yet; we may enable it later once we figure out the implications for the GUI. Signed-off-by: Federico Mena Quintero --- gtk/gtkfilechooserdefault.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gtk/gtkfilechooserdefault.c b/gtk/gtkfilechooserdefault.c index 213471515a..aab4b04b04 100644 --- a/gtk/gtkfilechooserdefault.c +++ b/gtk/gtkfilechooserdefault.c @@ -4898,7 +4898,9 @@ path_bar_set_mode (GtkFileChooserDefault *impl, PathBarMode mode) if (path_bar_visible) { - if (impl->create_folders && impl->action != GTK_FILE_CHOOSER_ACTION_OPEN) + if (impl->create_folders + && impl->action != GTK_FILE_CHOOSER_ACTION_OPEN + && impl->operation_mode != OPERATION_MODE_RECENT) create_folder_visible = TRUE; } -- 2.30.2